body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

body,
html {
  scroll-behavior: smooth;
  font-family: "Noto Sans SC";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

@font-face {
  font-family: "DIN-Medium";
  src: url("../fonts/DIN-Medium.otf");
}
@font-face {
  font-family: "DIN bold";
  src: url("../fonts/din-bold-2.ttf");
}
:root {
  --Noto-Sans-SC: "Noto Sans SC", sans-serif;
  --Noto-Serif-SC: "Noto Serif SC", sans-serif;
  --Roboto: "Roboto", sans-serif;
  --Abel: "Abel", sans-serif;
  --Barlow-Condensed: "Barlow Condensed", sans-serif;
  --Din: "DIN-Medium", sans-serif;
}
a {
  text-decoration: none;
  color: #333;
  display: block;
}

p {
  color: #434343;
}

a:hover {
  text-decoration: none;
}

a img {
  border-bottom-style: none;
  border-right-style: none;
  border-top-style: none;
  border-left-style: none;
}

div {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

li {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

p,
strong,
em {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  font-weight: normal;
}

form {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

em {
  font-style: normal;
  font-weight: normal;
}

table {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

dt {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

dl {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

dd {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

tr {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

input,
textarea,
select {
  outline: none;
  border: 0;
}

.cl {
  height: 0px;
  clear: both;
}

.fl {
  float: left;
  display: block;
}

.fr {
  float: right;
}

.c {
  *zoom: 1;
}

.c:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

.txt-c {
  text-align: center;
}

.txt-l {
  text-align: left !important;
}

.txt-r {
  text-align: right;
}

.bg-black {
  background: #000;
}

.col-black {
  color: #000;
}

.col-white {
  color: #fff !important;
}

strong {
  font-weight: bold;
}

i {
  font-style: normal;
}

.m {
  margin: 0 auto;
}

.blue {
  color: #0056a1;
}
@font-face {
  font-family: "arial";
  src: url(../fonts/arial.ttf);
}
.container {
  max-width: 1520px;
  margin: 0 auto;
}
header{
  width: 100%;
  height: 112px;
  background: transparent;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
}
header .header{
  height: 112px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  transition: all .5s;
}
header .header .header-nav{
  width: 42%;
  height: 100%;
}
header .header .header-nav ul{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
header .header .header-nav ul li a{
  font-size: 18px;
	color: #ffffff;
  line-height: 112px;
  font-family: "Noto Sans SC";
  position: relative;
  transition: all .5s;
}
header .header .header-nav ul li a::after{
  content: "";
  width: 0;
	height: 3px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  bottom: 23%;
  transform: translateX(-50%);
  transition: all .5s;
}
header .header .header-nav ul li a:hover::after{
  width: 20px;
}
header .header .header-nav ul li .act::after{
  width: 20px !important;
}
header .header .ss{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header .ss form{
  position: relative;
}
header .header .ss form input{
  width: 161px;
	height: 40px;
	border-radius: 20px;
	border: solid 1px #ffffff;
	opacity: 0.8;
  background: transparent;
  padding-left: 11px;
  color: #ffffff;
  font-family: "Noto Sans SC";
}
header .header .ss form input::placeholder{
  font-size: 14px;
	color: #ffffff;
  font-family: "Noto Sans SC";
}
header .header .ss form button{
  border: none;
  background: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
header .header .ss .lang {
  position: relative;
  margin-left: 18px;
}
header .header .ss .lang a{
  font-size: 16px;
	color: #ffffff;
  font-family: "Noto Sans SC";
}
header .header .ss .lang .lang-hover{
  position: absolute;
  left: 0;
  bottom: -130%;
  opacity: 0;
  transition: all .5s;
}
header .header .ss .lang:hover .lang-hover{
  opacity: 1;
  bottom: -90%;
}
.zw{
  height: 112px;
}
header #header .header-nav ul li a{
  color: #02142d;
}
header #header .ss form input{
  color: #bababa;
  border: 1px solid #e8e8e8;
}
header #header .ss form input::placeholder
{
  color: #bababa;
}
header #header .ss .lang a{
  color: #02142d;
}
header #header .header-nav ul li a::after{
  background-color: #0056a1;
}
header #header .header-nav ul li a:hover{
  color: #0056a1;
}
header #header .header-nav ul li .act{
  color: #0056a1;
}
.h{
  background: #fff !important;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
}